adding blank flickr and screenshot controllers

This commit is contained in:
Andrew Davidson 2009-10-28 22:18:24 -07:00
parent 5383c4fc4d
commit 884e70deb1
8 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,2 @@
class FlickrController < ApplicationController
end

View file

@ -0,0 +1,2 @@
class ScreenshotController < ApplicationController
end

View file

@ -0,0 +1,2 @@
module FlickrHelper
end

View file

@ -0,0 +1,2 @@
module ScreenshotHelper
end

View 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

View 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

View file

@ -0,0 +1,4 @@
require 'test_helper'
class FlickrHelperTest < ActionView::TestCase
end

View file

@ -0,0 +1,4 @@
require 'test_helper'
class ScreenshotHelperTest < ActionView::TestCase
end