Projects

Ticket #726: test.rb

File test.rb, 397 bytes (added by dylan@…, 2 years ago)

Failing Test

Line 
1class String
2        #-----------------------------------------------------------------------------
3
4        def cook
5         puts 'Bacon!'
6        end
7       
8        def to_mutable_attributed_string
9          NSMutableAttributedString.alloc.initWithString( self )
10  end
11end
12
13base_string = 'breakfast'
14
15puts base_string.class
16base_string.cook
17
18mutable = base_string.to_mutable_attributed_string
19
20puts mutable.string.class
21mutable.string.cook
22