Skip to content

Instantly share code, notes, and snippets.

@wilsonsilva
Last active October 13, 2015 11:39
Show Gist options
  • Select an option

  • Save wilsonsilva/8323cfcd1f4dc3363c44 to your computer and use it in GitHub Desktop.

Select an option

Save wilsonsilva/8323cfcd1f4dc3363c44 to your computer and use it in GitHub Desktop.
RSpec one liners
describe User do
subject { create(:user, name: 'Wilson Silva', activated: true) }
it { is_expected.to be_activated }
its(:name) { is_expected.to eq('Wilson Silva') }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment