To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorModel specs
Model specs live in spec/models, e.g. spec/models/account_spec.rb. A model spec
is a thin wrapper for an ActiveSupport::TestCase, and includes all of the
behavior and assertions that it provides, in addition to RSpec's own behavior
and expectations.
Examples
require "spec_helper"
describe Post do
context "with 2 or more comments" do
it "orders them in reverse" do
post = Post.create
comment1 = post.comment("first")
comment2 = post.comment("second")
post.reload.comments.should eq([comment2, comment1])
end
end
end
Topics
Last published almost 7 years ago by dchelimsky.