You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 30, 2024. It is now read-only.
None of these work in rspec-2, but they all do in rspec-1:
describe "something" do
it "does something" do
pending
# ....
end
it "does something else" do
pending "getting something fixed"
# ...
end
it "does something else" do
pending "getting something fixed" do
# ...
end
end