emails.rb 1.29 KB
Newer Older
1
class Spinach::Features::ProfileEmails < Spinach::FeatureSteps
2 3
  include SharedAuthentication

4
  step 'I visit profile emails page' do
5 6 7
    visit profile_emails_path
  end

8
  step 'I should see my emails' do
9 10 11 12 13 14
    page.should have_content(@user.email)
    @user.emails.each do |email|
      page.should have_content(email.email)
    end
  end

15
  step 'I submit new email "my@email.com"' do
16 17 18 19
    fill_in "email_email", with: "my@email.com"
    click_button "Add"
  end

20
  step 'I should see new email "my@email.com"' do
21 22 23 24 25
    email = @user.emails.find_by(email: "my@email.com")
    email.should_not be_nil
    page.should have_content("my@email.com")
  end

26
  step 'I should not see email "my@email.com"' do
27 28 29 30 31
    email = @user.emails.find_by(email: "my@email.com")
    email.should be_nil
    page.should_not have_content("my@email.com")
  end
  
32
  step 'I click link "Remove" for "my@email.com"' do
33 34 35 36 37 38
    # there should only be one remove button at this time
    click_link "Remove"
    # force these to reload as they have been cached
    @user.emails.reload
  end

39
  step 'I submit duplicate email @user.email' do
40 41 42 43
    fill_in "email_email", with: @user.email
    click_button "Add"
  end

44
  step 'I should not have @user.email added' do
45 46 47 48
    email = @user.emails.find_by(email: @user.email)
    email.should be_nil
  end
end