@@ -1,27 +1,27 | |||
|
1 | 1 | require File.expand_path('../../../test_helper', __FILE__) |
|
2 | 2 | |
|
3 | 3 | class ApiTest::HttpBasicLoginWithApiTokenTest < ActionController::IntegrationTest |
|
4 | 4 | fixtures :all |
|
5 | 5 | |
|
6 | 6 | def setup |
|
7 | 7 | Setting.rest_api_enabled = '1' |
|
8 | 8 | Setting.login_required = '1' |
|
9 | 9 | end |
|
10 | 10 | |
|
11 | 11 | def teardown |
|
12 | 12 | Setting.rest_api_enabled = '0' |
|
13 | 13 | Setting.login_required = '0' |
|
14 | 14 | end |
|
15 | ||
|
15 | ||
|
16 | 16 | # Using the NewsController because it's a simple API. |
|
17 | 17 | context "get /news" do |
|
18 | 18 | |
|
19 | 19 | context "in :xml format" do |
|
20 | 20 | should_allow_http_basic_auth_with_key(:get, "/news.xml") |
|
21 | 21 | end |
|
22 | 22 | |
|
23 | 23 | context "in :json format" do |
|
24 | 24 | should_allow_http_basic_auth_with_key(:get, "/news.json") |
|
25 | 25 | end |
|
26 | 26 | end |
|
27 | 27 | end |
General Comments 0
You need to be logged in to leave comments.
Login now