2012-11-29 64 views
0

我認爲在rspec(rails)中聲明瞭一個完整的示例組需要掛起的命令 我認爲它是類似before {pending}的東西,但我找不到它了。 有誰知道你可以做到這一點?立即聲明整個示例組

 context "Group1" do 
      before { pending } 
      it "example1" do 
      end 
      it "example2" do 
      end 
      it "example3" do 
      end 
     end 

回答

0

簡單未決的

pending "Group1" do 
     before { pending } 
     it "example1" do 
     end 
     it "example2" do 
     end 
     it "example3" do 
     end 
    end 
+0

漂亮,而且比你想象:)(我標出你的答案正確的,因爲前面是,這是一個雖然基本上正確的總是比較容易更換descibe或上下文仍然不得不在「{pending}」之前清理掉) –

1
pending "Group1" do 
     it "example1" do 
     end 
     it "example2" do 
     end 
     it "example3" do 
     end 
    end