aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/scaffold/templates/system_test.rb
diff options
context:
space:
mode:
authorDinah Shi <dinahshi28@gmail.com>2017-06-10 21:39:51 -0400
committerDinah Shi <dinahshi28@gmail.com>2017-06-30 09:38:18 -0400
commitd502cd1a5024743b3891592c73538d4e446bbd98 (patch)
tree26d77cd4d4dc437b006ec2962f7ffbccbf64c98c /railties/lib/rails/generators/test_unit/scaffold/templates/system_test.rb
parent52f90044a159559d94b4f597e9d79b44024ed09a (diff)
downloadrails-d502cd1a5024743b3891592c73538d4e446bbd98.tar.gz
rails-d502cd1a5024743b3891592c73538d4e446bbd98.tar.bz2
rails-d502cd1a5024743b3891592c73538d4e446bbd98.zip
Add system tests to generate scaffold
Diffstat (limited to 'railties/lib/rails/generators/test_unit/scaffold/templates/system_test.rb')
-rw-r--r--railties/lib/rails/generators/test_unit/scaffold/templates/system_test.rb49
1 files changed, 49 insertions, 0 deletions
diff --git a/railties/lib/rails/generators/test_unit/scaffold/templates/system_test.rb b/railties/lib/rails/generators/test_unit/scaffold/templates/system_test.rb
new file mode 100644
index 0000000000..f83f5a5c62
--- /dev/null
+++ b/railties/lib/rails/generators/test_unit/scaffold/templates/system_test.rb
@@ -0,0 +1,49 @@
+require "application_system_test_case"
+
+<% module_namespacing do -%>
+class <%= class_name.pluralize %>Test < ApplicationSystemTestCase
+ setup do
+ @<%= singular_table_name %> = <%= fixture_name %>(:one)
+ end
+
+ test "visiting the index" do
+ visit <%= plural_table_name %>_url
+ assert_selector "h1", text: "<%= class_name.pluralize.titleize %>"
+ end
+
+ test "creating a <%= human_name %>" do
+ visit <%= plural_table_name %>_url
+ click_on "New <%= class_name.titleize %>"
+
+ <%- attributes_hash.each do |attr, value| -%>
+ fill_in "<%= attr.humanize.titleize %>", with: <%= value %>
+ <%- end -%>
+ click_on "Create <%= human_name %>"
+
+ assert_text "<%= human_name %> was successfully created"
+ click_on "Back"
+ end
+
+ test "updating a <%= human_name %>" do
+ visit <%= plural_table_name %>_url
+ click_on "Edit", match: :first
+
+ <%- attributes_hash.each do |attr, value| -%>
+ fill_in "<%= attr.humanize.titleize %>", with: <%= value %>
+ <%- end -%>
+ click_on "Update <%= human_name %>"
+
+ assert_text "<%= human_name %> was successfully updated"
+ click_on "Back"
+ end
+
+ test "destroying a <%= human_name %>" do
+ visit <%= plural_table_name %>_url
+ page.accept_confirm do
+ click_on "Destroy", match: :first
+ end
+
+ assert_text "<%= human_name %> was successfully destroyed"
+ end
+end
+<% end -%>