1
0
Fork 0
mirror of https://github.com/awesome-print/awesome_print synced 2023-03-27 23:22:34 -04:00

Remove extra puts in spec.

This commit is contained in:
James Cox 2019-01-23 11:28:26 -05:00
parent 751d6c9fc1
commit e2acfab48a

View file

@ -78,7 +78,6 @@ RSpec.describe 'unbound methods' do
def world(a, b); end
end
method = Hello.instance_method(:world)
puts "\e[1;33mHello (unbound)\e[0m#\e[0;35mworld\e[0m\e[0;37m(a, b)\e[0m"
expect(method.ai).to eq("\e[1;33mHello (unbound)\e[0m#\e[0;35mworld\e[0m\e[0;37m(a, b)\e[0m")
end
end