私はこのユニットテストファイルを持っている:クラス内のメソッド名でファイルを生成するにはどうすればいいですか?
class WebsiteCheckPageElements < Test::Unit::TestCase
def setup
...
end
def test_achievements_iknow_report_page
...
end
def test_achievements_daily_report_page
...
end
def test_client_side_report_page
...
end
end
を私は.txtファイルにテストの名前を書きますRubyスクリプトを記述する必要があります。
セットアップ
test_achievements_iknow_report_page
test_achievements_daily_report_page
test_client_side_report_page
が提案を事前にいただきありがとうございますような何か。
「Ruby-on-Rail」とタグ付けされているのはなぜですか? –