Skip to content

Instantly share code, notes, and snippets.

@knwang
Created October 5, 2011 00:35
Show Gist options
  • Save knwang/1263282 to your computer and use it in GitHub Desktop.
Save knwang/1263282 to your computer and use it in GitHub Desktop.
Proofing_oven: Candidate Spec
require 'spec_helper'
describe Candidate do
subject { Fabricate(:candidate, first_name: "Joe", last_name: "Doe") }
describe "#full_name" do
its(:full_name) { should == "Joe Doe" }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment