remove card_types from helpers

This commit is contained in:
Rishabh Saxena 2016-07-14 22:20:31 +05:30
parent ae44abc7e6
commit 3b4c7d70c0
2 changed files with 0 additions and 11 deletions

View file

@ -18,11 +18,4 @@ describe PaymentsHelper, type: :helper do
expect(years).to match_array(Array(Date.current.year..Date.current.year + 15))
end
end
describe '#card_types' do
it 'returns the correct set of card_types array' do
expect(card_types).to match_array(Array([["American Express", "american_express"], ["Discover", "discover"],
["MasterCard", "master"], ["Visa", "visa"]]))
end
end
end