mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
e4a76812a6
shrunk avatar to 60px, added global whitelisting
18 lines
671 B
Ruby
18 lines
671 B
Ruby
require 'spec_helper'
|
|
require 'oneboxer'
|
|
require 'oneboxer/whitelist'
|
|
|
|
describe Oneboxer::Whitelist do
|
|
it "matches an arbitrary Discourse post link" do
|
|
Oneboxer::Whitelist.entry_for_url('http://meta.discourse.org/t/scrolling-up-not-loading-in-firefox/3340/6?123').should_not be_nil
|
|
end
|
|
|
|
it "matches an arbitrary Discourse topic link" do
|
|
Oneboxer::Whitelist.entry_for_url('http://meta.discourse.org/t/scrolling-up-not-loading-in-firefox/3340?123').should_not be_nil
|
|
end
|
|
|
|
it "Does not match on slight variation" do
|
|
Oneboxer::Whitelist.entry_for_url('http://meta.discourse.org/t/scrolling-up-not-loading-in-firefox/3340a?123').should be_nil
|
|
end
|
|
|
|
end
|