module ViewAssets # TODO add rspec examples class StyleSheetAssets < AssetsFinder def assets_path # 'assets/javascripts' 'stylesheets' end def asset_extension 'css' end def asset_type 'stylesheet' end def tag(css_href) "" end end end