example/hello からの fork
リビジョン | c26e590870510b6c86720b8ad5ae15b1ac88088c (tree) |
---|---|
日時 | 2014-03-12 16:53:37 |
作者 | SF.JP :Example User <example@user...> |
コミッター | SF.JP :Example User |
Add test.
@@ -0,0 +1,9 @@ | ||
1 | +require 'test_helper' | |
2 | + | |
3 | +class HelloTest < ActionDispatch::IntegrationTest | |
4 | + test "say hello" do | |
5 | + get 'hello/index' | |
6 | + assert_template 'index' | |
7 | + assert_select 'h1', %r{hello world}i | |
8 | + end | |
9 | +end |