以下のコードで正しく動作するテストはどれですか? ```ruby class Item def initialize(price) @price = price end def expensive? @price > 1000 end end ```