タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

rakeとRSpecに関するjetglassのブックマーク (3)

  • ASCIIcasts - “Episode 264 - Guard”

    264: Guard  (view original Railscast) Other translations: Other formats: Written by Naomi Fujimoto エピソード257[動画を見る, 読む]でRSpecのRequest Specsによるテスト駆動開発でアプリケーションを作成しました。アプリケーションのテストが成功することを、いつでもrake specでチェックできます。 $ rake spec (in /Users/eifion/rails/todo) /Users/eifion/.rvm/rubies/ruby-1.9.2-p0/bin/ruby -S bundle exec rspec ./spec/models/task_spec.rb ./spec/requests/tasks_spec.rb ... Finished in 0.92

  • [Ruby on Rails]RSpecによるRakeのテスト | DevelopersIO

    はじめに タイトル通り、RSpecにてRakeのテストを書く方法についてです。RSpecからRakeを呼び出す方法は、普通のModelやControllerのメソッドを呼び出すのとは異なっていたので、備忘録として残しておきます。 対象となるRakeとRSpec 1.Rake テスト対象となるRakeは以下の通りです。2つのtaskがあり、片方は引数なし、もう片方は引数を受け取ります。それぞれのtaskでは、別メソッドを呼び出しているだけの簡単な処理です。 /lib/tasks/start.rake namespace :start do task :exec_no_args :environment do SampleController.exec_no_args end task :exec_with_args, :arg_hoge task :exec_with_args => :en

    [Ruby on Rails]RSpecによるRakeのテスト | DevelopersIO
  • phil.sergi.blog: Testing Rake Tasks with RSpec

    Not sure if this is the correct way to go about testing rake tasks but it works pretty well. Hit up the comments if there is a better way. So here is an example rake task I want to test: [lib/tasks/app.rake] namespace :app do namespace :options do desc "refreshes option values" task :refresh => :environment do options = YAML.load_file("config/options.yml") options.each do |attrs| option = Option.f

  • 1