Rename "User Expansion" to the much clearer "User Card"

This commit is contained in:
Robin Ward
2014-10-20 12:11:36 -04:00
parent 10094a0bcd
commit 1cf4a0d604
27 changed files with 76 additions and 71 deletions

View File

@@ -32,13 +32,13 @@ describe UserSerializer do
end
end
context "with filled out expansion background" do
context "with filled out card background" do
before do
user.user_profile.expansion_background = 'http://expansion.com'
user.user_profile.card_background = 'http://card.com'
end
it "has a profile background" do
expect(json[:expansion_background]).to eq 'http://expansion.com'
expect(json[:card_background]).to eq 'http://card.com'
end
end