Задаем этот вопрос снова с меньшим примером кода:
# this is a dummy shoulda macro that creates a context
def self.macro_context
context "macro" do
yield
end
end
# i am expecting this test to fail within the macro context
context "some context" do
macro_context do
should "test" do
fail
end
end
end
Так что я бы ожидал увидеть:
1) Error:
test: some context macro context should test. (TestClassName)
Но я получаю только это:
Так что я бы ожидал увидеть:
1) Error:
test: some context should test. (TestClassName)
Есть идеи, что я делаю не так?