Merge branch 'master' of github.com:discourse/discourse

This commit is contained in:
Sam
2013-06-10 09:48:51 +10:00
12 changed files with 406 additions and 79 deletions

View File

@@ -0,0 +1,17 @@
require 'spec_helper'
require 'oneboxer'
require 'oneboxer/github_pullrequest_onebox'
describe Oneboxer::GithubPullrequestOnebox do
describe '#translate_url' do
it 'returns the api url for the given pull request' do
onebox = described_class.new(
'https://github.com/discourse/discourse/pull/988'
)
expect(onebox.translate_url).to eq(
'https://api.github.com/repos/discourse/discourse/pulls/988'
)
end
end
end