Last active
January 31, 2017 22:04
-
-
Save noelrappin/d2479bc55ad8ea5393f3a992f47b3da1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PriceCalculator do | |
| it "returns the price of one item" do | |
| calculator = PriceCalcuator.new(Item.new(price: 200)) | |
| expect(calcuator.calculate).to eq(200) | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment