repo.or.cz
/
merb_mart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Added specs for item & line item.
[merb_mart.git]
/
app
/
models
/
item
/
line_item.rb
blob
fd010ffc497f9807ed8f43213726da016b4a0239
1
class LineItem < Item
2
property :unit_price, BigDecimal
3
property :quantity, Integer
4
5
validates_present :unit_price, :quantity
6
end