Slide 41
Slide 41 text
# spec/twitter_wrangler/roles/tweeting_patient_spec.rb
describe TweetingPatient do
let(:patient) { OpenStruct.new(body_mass_index: 27,
percent_of_body_mass_index_goal: “95%”,
body_mass_index_goal: 25) }
before { patient.extend TweetingPatient }
it ‘asserts some fantastic things’ do
#GLORIOUS SPECS
end
end