remove trailing whitespaces ❤️

This commit is contained in:
Gosha Arinich
2013-02-25 19:42:20 +03:00
parent b50e0536c7
commit cafc75b238
383 changed files with 4220 additions and 2221 deletions

View File

@ -4,7 +4,7 @@ require 'discourse_plugin_registry'
describe DiscoursePluginRegistry do
let(:registry) { DiscoursePluginRegistry.new }
context '#stylesheets' do
it 'defaults to an empty Set' do
DiscoursePluginRegistry.stylesheets = nil
@ -37,7 +37,7 @@ describe DiscoursePluginRegistry do
it "won't add the same file twice" do
lambda { registry.register_css('hello.css') }.should_not change(registry.stylesheets, :size)
end
end
end
context '.register_js' do
@ -51,7 +51,7 @@ describe DiscoursePluginRegistry do
it "won't add the same file twice" do
lambda { registry.register_js('hello.js') }.should_not change(registry.javascripts, :size)
end
end
end
context '.register_archetype' do