タグ

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

タグの絞り込みを解除

metaとtestに関するtoshi3221のブックマーク (1)

  • RSpec のメタ情報が知りたい « blog.udzura.jp

    RSpec の DSL には、 example と言うメソッドがあり、そこを経由して現在実行中の example の情報を得ることができる。 def add(*args) args.inject(:+) end describe "add" do before do p example.class #=> RSpec::Core::Example end subject { add(*args) } context "when 1 + 1" do let(:args) { [1, 1] } it { should == 2 } end end 具体的には、 example は RSpec::Core::Example のインスタンスらしい。 Class: RSpec::Core::Example 以下のような属性、メソッドがある: #exception 実行中の example で最初に起

    toshi3221
    toshi3221 2012/05/06
    RSpec失敗時のcapybara-webkitスクショの取り方
  • 1