提交 e1d307bf 编写于 作者: C Ciro Santilli

Move destroy user feature to spec.

上级 15914676
......@@ -36,13 +36,3 @@ Feature: Project Star
And I visit project "Community" page
When I click on the star toggle button
Then The project has 2 stars
@javascript
Scenario: If an user deletes his account his stars are destroyed
Given I sign in as "John Doe"
And public project "Community"
And I visit project "Community" page
And I click on the star toggle button
And I delete my account
When I visit project "Community" page
Then The project has 0 stars
......@@ -9,11 +9,6 @@ module SharedUser
user_exists("Mary Jane", {username: "mary_jane"})
end
step "I delete my account" do
visit profile_account_path
click_link "Delete account"
end
protected
def user_exists(name, options = {})
......
......@@ -241,8 +241,8 @@ describe Project do
it { project.open_branches.map(&:name).should_not include('master') }
end
describe "#star_count" do
it "counts stars from multiple users" do
describe '#star_count' do
it 'counts stars from multiple users' do
user1 = create :user
user2 = create :user
project = create :project, :public
......@@ -265,7 +265,7 @@ describe Project do
expect(project.reload.star_count).to eq(0)
end
it "counts stars on the right project" do
it 'counts stars on the right project' do
user = create :user
project1 = create :project, :public
project2 = create :project, :public
......@@ -297,5 +297,16 @@ describe Project do
expect(project1.star_count).to eq(0)
expect(project2.star_count).to eq(0)
end
it 'is decremented when an upvoter account is deleted' do
user = create :user
project = create :project, :public
user.toggle_star(project)
project.reload
expect(project.star_count).to eq(1)
user.destroy
project.reload
expect(project.star_count).to eq(0)
end
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册