るりまサーチ

最速Rubyリファレンスマニュアル検索!
99件ヒット [1-99件を表示] (0.034秒)
トップページ > クエリ:test_files[x]

別のキーワード

  1. kernel test
  2. _builtin test
  3. rubygems/test_utilities tempio
  4. rubygems/test_utilities fetcher=
  5. testtask test_files=

ライブラリ

クラス

キーワード

検索結果

Gem::Specification#test_files -> [String] (18101.0)

ユニットテストのファイルのリストを返します。

ユニットテストのファイルのリストを返します。

Rake::TestTask#test_files=(list) (6107.0)

明示的にテスト対象のファイルを指定します。

...明示的にテスト対象のファイルを指定します。

Rake::TestTask#pattern=, Rake::TestTask#test_files= の
両方でテスト対象を指定した場合、両者は一つにまとめて使用されます。

@param list 配列か Rake::FileList のインスタンスを指定します...

Gem::Specification#test_files=(files) (6101.0)

ユニットテストのファイルのリストをセットします。

ユニットテストのファイルのリストをセットします。

@param files ユニットテストのファイルのリストを指定します。

Gem::Specification#test_file -> String (16.0)

Gem::Specification#test_files の単数バージョンです。

...Gem::Specification#test_files の単数バージョンです。...

Gem::Specification#test_file=(file) (16.0)

Gem::Specification#test_files= の単数バージョンです。

...Gem::Specification#test_files= の単数バージョンです。...

絞り込み条件を変える

Gem::Specification#test_suite_file -> String (16.0)

この属性は非推奨です。 Gem::Specification#test_files を使用してください。

...この属性は非推奨です。 Gem::Specification#test_files を使用してください。...

Gem::Specification#test_suite_file=(file) (16.0)

この属性は非推奨です。 Gem::Specification#test_files= を使用してください。

...この属性は非推奨です。 Gem::Specification#test_files= を使用してください。

@param file テストスイートのファイルを指定します。...

Rake::TestTask (6.0)

ユニットテストを実行するためのタスクを作成するクラスです。

...ットテストを実行するためのタスクを作成するクラスです。

例:
Rake::TestTask.new do |t|
t.libs << "test"
t.test_files = FileList['test/test*.rb']
t.verbose = true
end

以下に test ターゲットの使用例を示します。

例:
rake test...

rake (6.0)

Rake というコマンドラインツールを扱うライブラリです。

...クを定義
task :default => [:test]

1.upto(8) do |n|
Rake::TestTask.new("test_step#{n}") do |t|
t.libs << "step#{n}"
t.test_files = FileList["step#{n}/test_*.rb"]
t.verbose = false
end
end

desc 'execute all test'
task 'test_all' => (1..8).to_a.map{|n| "tes...