public function setUp() { $post = json_decode(file_get_contents(__DIR__ . '/data.json'), true); $this->v = Indie::withLocalization('en_US'); $this->v->import($post); }
public function testMultipleImport() { $this->v->import(["import" => "import"]); $this->v->key('import')->with(new Rule\Equals('import')); $this->assertTrue($this->v->isValid('import')); }