--- /dev/null
+class UserPreferenceController < ApplicationController
+end
--- /dev/null
+module UserPreferenceHelper
+end
+
class Notifier < ActionMailer::Base
def signup_confirm(user, token)
recipients user.email
# Configure ActionMailer
ActionMailer::Base.smtp_settings = {
- :address => "localhost",
- :port => 25,
- :domain => 'localhost',
+ :address => 'localhost',
+ :port => 25,
+ :domain => 'localhost',
}
+++ /dev/null
-class CreateUserPreferences < ActiveRecord::Migration
- def self.up
- end
-
- def self.down
- end
-end
--- /dev/null
+# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
+
+# one:
+# column: value
+#
+# two:
+# column: value
--- /dev/null
+require File.dirname(__FILE__) + '/../test_helper'
+
+class UserPreferenceControllerTest < ActionController::TestCase
+ # Replace this with your real tests.
+ def test_truth
+ assert true
+ end
+end
--- /dev/null
+require File.dirname(__FILE__) + '/../test_helper'
+
+class UserPreferenceTest < ActiveSupport::TestCase
+ # Replace this with your real tests.
+ def test_truth
+ assert true
+ end
+end