replaced Glyphicon icons by Font Awesome icons

This commit is contained in:
Hauke Klement
2015-03-18 10:19:39 +01:00
parent d109663cb9
commit 9d6b79c919
7 changed files with 11 additions and 11 deletions

View File

@ -37,7 +37,7 @@ describe ApplicationHelper do
describe '#no' do
it "builds an 'i' tag" do
expect(no).to have_css('i.glyphicon.glyphicon-remove')
expect(no).to have_css('i.fa.fa-times')
end
end
@ -139,7 +139,7 @@ describe ApplicationHelper do
describe '#yes' do
it "builds an 'i' tag" do
expect(yes).to have_css('i.glyphicon.glyphicon-ok')
expect(yes).to have_css('i.fa.fa-check')
end
end
end