• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

example/hello からの fork


コミットメタ情報

リビジョンc26e590870510b6c86720b8ad5ae15b1ac88088c (tree)
日時2014-03-12 16:53:37
作者SF.JP :Example User <example@user...>
コミッターSF.JP :Example User

ログメッセージ

Add test.

変更サマリ

差分

--- /dev/null
+++ b/test/integration/hello_test.rb
@@ -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