make me work

This commit is contained in:
Marco Zeisler 2020-04-24 17:02:08 +02:00
parent 717abd8796
commit 670bac90d2
4 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,3 @@
// Place all the styles related to the CoursesCrawler controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: https://sass-lang.com/

View File

@ -0,0 +1,12 @@
class CoursesCrawlerController < ApplicationController
def show_basic
end
def show_detail
end
def add_to_fav
end
end

View File

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

View File

@ -0,0 +1,7 @@
require 'test_helper'
class CoursesCrawlerControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end