Commit 0810eeaa authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Add tests for configuration files settings

parent 83cd775f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@ repos:
  - id: check-for-squash
  - id: copyright-notice
    exclude: ^data/|^scripts/(compile-|install-)
    args: [--min-size=1000]
  - id: protect-first-parent

- repo: https://github.com/pre-commit/pygrep-hooks
+1 −0
Original line number Diff line number Diff line
this-plugin-does-not-exist
+9 −0
Original line number Diff line number Diff line
// <?php

// Serves the word "eggs" at /eggs
// Used for checking that this file has been loaded correctly

if ($_SERVER['REQUEST_URI'] == '/eggs') {
	echo("eggs");
	exit;
}
+9 −0
Original line number Diff line number Diff line
// <?php

// Serves the word "ham" at /ham
// Used for checking that this file has been loaded correctly

if ($_SERVER['REQUEST_URI'] == '/ham') {
	echo("ham");
	exit;
}
+9 −0
Original line number Diff line number Diff line
// <?php

// Serves the word "spam" at /spam
// Used for checking that this file has been loaded correctly

if ($_SERVER['REQUEST_URI'] == '/spam') {
	echo("spam");
	exit;
}
Loading