Version 5.1 - All the GraphQL #32
@ -270,7 +270,7 @@ class FormGeneratorTest extends AnimeClientTestCase {
|
||||
foreach ($fields as $name => $config)
|
||||
{
|
||||
$html = $this->generator->generate($name, $config);
|
||||
$this->assertMatchesHtmlSnapshot($html);
|
||||
$this->assertMatchesSnapshot($html);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,3 @@
|
||||
<?php return '<label><input type="radio" name="enabled" value="1" /> Yes</label>
|
||||
<label><input type="radio" name="enabled" value="0" checked /> No</label>
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="connection" type="text" name="connection" value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="kitsu_username" type="text" name="kitsu_username" value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="whose_list" type="text" name="whose_list" value="" />
|
||||
';
|
@ -0,0 +1,6 @@
|
||||
<?php return '<select id="theme" name="theme">
|
||||
<option value="auto">Automatically match OS theme</option>
|
||||
<option value="light">Original Light Theme</option>
|
||||
<option value="dark">Dark Theme</option>
|
||||
</select>
|
||||
';
|
@ -0,0 +1,3 @@
|
||||
<?php return '<label><input type="radio" name="show_anime_collection" value="1" /> Yes</label>
|
||||
<label><input type="radio" name="show_anime_collection" value="0" checked /> No</label>
|
||||
';
|
@ -0,0 +1,3 @@
|
||||
<?php return '<label><input type="radio" name="show_manga_collection" value="1" /> Yes</label>
|
||||
<label><input type="radio" name="show_manga_collection" value="0" checked /> No</label>
|
||||
';
|
@ -0,0 +1,5 @@
|
||||
<?php return '<select id="default_list" name="default_list">
|
||||
<option value="anime">Anime</option>
|
||||
<option value="manga">Manga</option>
|
||||
</select>
|
||||
';
|
@ -0,0 +1,9 @@
|
||||
<?php return '<select id="default_anime_list_path" name="default_anime_list_path">
|
||||
<option value="watching">Watching</option>
|
||||
<option value="plan_to_watch">Plan to Watch</option>
|
||||
<option value="on_hold">On Hold</option>
|
||||
<option value="dropped">Dropped</option>
|
||||
<option value="completed">Completed</option>
|
||||
<option value="all">All</option>
|
||||
</select>
|
||||
';
|
@ -0,0 +1,9 @@
|
||||
<?php return '<select id="default_manga_list_path" name="default_manga_list_path">
|
||||
<option value="reading">Reading</option>
|
||||
<option value="plan_to_read">Plan to Read</option>
|
||||
<option value="on_hold">On Hold</option>
|
||||
<option value="dropped">Dropped</option>
|
||||
<option value="completed">Completed</option>
|
||||
<option value="all">All</option>
|
||||
</select>
|
||||
';
|
@ -0,0 +1,6 @@
|
||||
<?php return '<select id="type" name="type">
|
||||
<option value="mysql">MySQL</option>
|
||||
<option value="pgsql">PostgreSQL</option>
|
||||
<option value="sqlite">SQLite</option>
|
||||
</select>
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="client_id" type="text" name="client_id" value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="host" type="text" name="host" value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="user" type="text" name="user" value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="pass" type="text" name="pass" value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="port" type="text" name="port" value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="database" type="text" name="database" value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="file" type="text" name="file" value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="client_secret" type="text" name="client_secret" value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="username" type="text" name="username" value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="access_token" type="text" name="access_token" readonly value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="access_token_expires" type="text" name="access_token_expires" readonly value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input id="refresh_token" type="text" name="refresh_token" readonly value="" />
|
||||
';
|
@ -0,0 +1,2 @@
|
||||
<?php return '<input type="hidden" name="special_hidden_flag" value="foo_bar" />
|
||||
';
|
@ -0,0 +1,7 @@
|
||||
<?php return '<select id="driver" name="driver">
|
||||
<option value="apcu">APCu</option>
|
||||
<option value="memcached">Memcached</option>
|
||||
<option value="redis">Redis</option>
|
||||
<option value="null">No Cache</option>
|
||||
</select>
|
||||
';
|
Loading…
Reference in New Issue
Block a user