adding blank flickr and screenshot controllers
This commit is contained in:
parent
5383c4fc4d
commit
884e70deb1
8 changed files with 32 additions and 0 deletions
2
app/controllers/flickr_controller.rb
Normal file
2
app/controllers/flickr_controller.rb
Normal file
|
@ -0,0 +1,2 @@
|
|||
class FlickrController < ApplicationController
|
||||
end
|
2
app/controllers/screenshot_controller.rb
Normal file
2
app/controllers/screenshot_controller.rb
Normal file
|
@ -0,0 +1,2 @@
|
|||
class ScreenshotController < ApplicationController
|
||||
end
|
2
app/helpers/flickr_helper.rb
Normal file
2
app/helpers/flickr_helper.rb
Normal file
|
@ -0,0 +1,2 @@
|
|||
module FlickrHelper
|
||||
end
|
2
app/helpers/screenshot_helper.rb
Normal file
2
app/helpers/screenshot_helper.rb
Normal file
|
@ -0,0 +1,2 @@
|
|||
module ScreenshotHelper
|
||||
end
|
8
test/functional/flickr_controller_test.rb
Normal file
8
test/functional/flickr_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require 'test_helper'
|
||||
|
||||
class FlickrControllerTest < ActionController::TestCase
|
||||
# Replace this with your real tests.
|
||||
test "the truth" do
|
||||
assert true
|
||||
end
|
||||
end
|
8
test/functional/screenshot_controller_test.rb
Normal file
8
test/functional/screenshot_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require 'test_helper'
|
||||
|
||||
class ScreenshotControllerTest < ActionController::TestCase
|
||||
# Replace this with your real tests.
|
||||
test "the truth" do
|
||||
assert true
|
||||
end
|
||||
end
|
4
test/unit/helpers/flickr_helper_test.rb
Normal file
4
test/unit/helpers/flickr_helper_test.rb
Normal file
|
@ -0,0 +1,4 @@
|
|||
require 'test_helper'
|
||||
|
||||
class FlickrHelperTest < ActionView::TestCase
|
||||
end
|
4
test/unit/helpers/screenshot_helper_test.rb
Normal file
4
test/unit/helpers/screenshot_helper_test.rb
Normal file
|
@ -0,0 +1,4 @@
|
|||
require 'test_helper'
|
||||
|
||||
class ScreenshotHelperTest < ActionView::TestCase
|
||||
end
|
Loading…
Reference in a new issue