summaryrefslogtreecommitdiff
path: root/tests/Unit/Http/Validation/Rules/InTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Http/Validation/Rules/InTest.php')
-rw-r--r--tests/Unit/Http/Validation/Rules/InTest.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/Unit/Http/Validation/Rules/InTest.php b/tests/Unit/Http/Validation/Rules/InTest.php
new file mode 100644
index 00000000..e5688d90
--- /dev/null
+++ b/tests/Unit/Http/Validation/Rules/InTest.php
@@ -0,0 +1,19 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Http\Validation\Rules;
+
+use Engelsystem\Http\Validation\Rules\In;
+use Engelsystem\Test\Unit\TestCase;
+
+class InTest extends TestCase
+{
+ /**
+ * @covers \Engelsystem\Http\Validation\Rules\In::__construct
+ */
+ public function testConstruct()
+ {
+ $rule = new In('foo,bar');
+
+ $this->assertEquals(['foo', 'bar'], $rule->haystack);
+ }
+}