Sha256: af8809112c22c71f2ff2388782688a4abc41348d572c29d1bf02f04a3e9977b1
Contents?: true
Size: 1023 Bytes
Versions: 1
Compression:
Stored size: 1023 Bytes
Contents
require 'spec_helper' class User def initialize(first_name=nil, last_name=nil) @first_name, @last_name = first_name, last_name end def full_name [@first_name, @last_name].compact.join(" ") end end describe User do describe "#initialize" do subject { User.new("John", "Doe") } it "should correctly set the instance variables on the User instance" do subject.at.first_name.should == "John" subject.at.last_name.should == "Doe" end end describe "#full_name" do it "should correctly output the full name" do subject.at.first_name = "John" subject.at.last_name = "Doe" subject.full_name.should == "John Doe" end end describe "#first_name" do it "should raise a NoMethodError" do Proc.new { subject.first_name }.should raise_error(NoMethodError) end end describe "#last_name" do it "should raise a NoMethodError" do Proc.new { subject.last_name }.should raise_error(NoMethodError) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
at-0.1.0 | spec/at_spec.rb |