blogit 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.md +3 -0
- data/Rakefile +39 -0
- data/app/assets/javascripts/blogit/index.js +1 -0
- data/app/assets/stylesheets/blogit/comments.css +16 -0
- data/app/assets/stylesheets/blogit/index.css +3 -0
- data/app/assets/stylesheets/blogit/posts.css +59 -0
- data/app/controllers/blogit/application_controller.rb +41 -0
- data/app/controllers/blogit/comments_controller.rb +44 -0
- data/app/controllers/blogit/posts_controller.rb +55 -0
- data/app/helpers/blogit/application_helper.rb +64 -0
- data/app/helpers/blogit/comments_helper.rb +19 -0
- data/app/helpers/blogit/posts_helper.rb +26 -0
- data/app/models/blogit/comment.rb +59 -0
- data/app/models/blogit/post.rb +57 -0
- data/app/views/blogit/comments/_comment.html.erb +16 -0
- data/app/views/blogit/comments/_form.html.erb +42 -0
- data/app/views/blogit/comments/create.js.erb +7 -0
- data/app/views/blogit/comments/destroy.js.erb +1 -0
- data/app/views/blogit/posts/_blog_post_spacer.html.erb +1 -0
- data/app/views/blogit/posts/_blogger_information.html.erb +4 -0
- data/app/views/blogit/posts/_comments_count.html.erb +5 -0
- data/app/views/blogit/posts/_form.html.erb +43 -0
- data/app/views/blogit/posts/_pagination.html.erb +1 -0
- data/app/views/blogit/posts/_post.html.erb +19 -0
- data/app/views/blogit/posts/_post_body.html.erb +1 -0
- data/app/views/blogit/posts/_post_head.html.erb +3 -0
- data/app/views/blogit/posts/_post_links.html.erb +5 -0
- data/app/views/blogit/posts/edit.html.erb +3 -0
- data/app/views/blogit/posts/index.html.erb +10 -0
- data/app/views/blogit/posts/new.html.erb +3 -0
- data/app/views/blogit/posts/show.html.erb +7 -0
- data/config/routes.rb +9 -0
- data/db/migrate/20110814091434_create_blog_posts.rb +12 -0
- data/db/migrate/20110814093229_create_blog_comments.rb +15 -0
- data/db/migrate/20110814103306_acts_as_taggable_on_migration.rb +28 -0
- data/lib/blogit.rb +24 -0
- data/lib/blogit/blogs.rb +19 -0
- data/lib/blogit/configuration.rb +74 -0
- data/lib/blogit/engine.rb +14 -0
- data/lib/blogit/parsers.rb +5 -0
- data/lib/blogit/parsers/html_parser.rb +9 -0
- data/lib/blogit/parsers/markdown_parser.rb +21 -0
- data/lib/blogit/parsers/textile_parser.rb +13 -0
- data/lib/blogit/version.rb +3 -0
- data/lib/generators/blogit/USAGE +8 -0
- data/lib/generators/blogit/install_generator.rb +15 -0
- data/lib/generators/templates/blogit.rb +42 -0
- data/lib/tasks/blog_tasks.rake +4 -0
- data/lib/validators.rb +3 -0
- data/lib/validators/absence_validator.rb +13 -0
- data/spec/blogit_spec.rb +20 -0
- data/spec/controllers/blogit/comments_controller_spec.rb +111 -0
- data/spec/controllers/blogit/posts_controller_spec.rb +261 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +3 -0
- data/spec/dummy/app/assets/stylesheets/application.css +18 -0
- data/spec/dummy/app/controllers/application_controller.rb +19 -0
- data/spec/dummy/app/controllers/people_controller.rb +83 -0
- data/spec/dummy/app/controllers/sessions_controller.rb +23 -0
- data/spec/dummy/app/controllers/users_controller.rb +83 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/helpers/people_helper.rb +2 -0
- data/spec/dummy/app/helpers/sessions_helper.rb +2 -0
- data/spec/dummy/app/helpers/users_helper.rb +2 -0
- data/spec/dummy/app/models/person.rb +2 -0
- data/spec/dummy/app/models/user.rb +11 -0
- data/spec/dummy/app/views/layouts/application.html.erb +28 -0
- data/spec/dummy/app/views/people/_form.html.erb +21 -0
- data/spec/dummy/app/views/people/edit.html.erb +6 -0
- data/spec/dummy/app/views/people/index.html.erb +23 -0
- data/spec/dummy/app/views/people/new.html.erb +5 -0
- data/spec/dummy/app/views/people/show.html.erb +10 -0
- data/spec/dummy/app/views/sessions/new.html.erb +17 -0
- data/spec/dummy/app/views/users/_form.html.erb +25 -0
- data/spec/dummy/app/views/users/edit.html.erb +6 -0
- data/spec/dummy/app/views/users/index.html.erb +25 -0
- data/spec/dummy/app/views/users/new.html.erb +5 -0
- data/spec/dummy/app/views/users/show.html.erb +15 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +25 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +30 -0
- data/spec/dummy/config/environments/production.rb +51 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/blogit.rb +40 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +12 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +11 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20110814091304_create_users.rb +10 -0
- data/spec/dummy/db/migrate/20110819103335_create_people.rb +9 -0
- data/spec/dummy/db/schema.rb +71 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +21145 -0
- data/spec/dummy/log/test.log +32053 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/test/fixtures/people.yml +7 -0
- data/spec/dummy/test/fixtures/users.yml +9 -0
- data/spec/dummy/test/functional/people_controller_test.rb +49 -0
- data/spec/dummy/test/functional/sessions_controller_test.rb +9 -0
- data/spec/dummy/test/functional/users_controller_test.rb +49 -0
- data/spec/dummy/test/unit/helpers/people_helper_test.rb +4 -0
- data/spec/dummy/test/unit/helpers/sessions_helper_test.rb +4 -0
- data/spec/dummy/test/unit/helpers/users_helper_test.rb +4 -0
- data/spec/dummy/test/unit/person_test.rb +7 -0
- data/spec/dummy/test/unit/user_test.rb +7 -0
- data/spec/dummy/tmp/cache/assets/BC4/870/sprockets%2F64a399278031122c8576726e146081d5 +0 -0
- data/spec/dummy/tmp/cache/assets/C49/710/sprockets%2F8a389a2323475a7053fc419c4103814f +0 -0
- data/spec/dummy/tmp/cache/assets/C9E/F00/sprockets%2Fdbb1755717649d42fe9df99326657618 +0 -0
- data/spec/dummy/tmp/cache/assets/CAA/0C0/sprockets%2Feec4505e23136c45e543a609b0c69554 +0 -0
- data/spec/dummy/tmp/cache/assets/CDE/240/sprockets%2Fcf7da81f64139020d3a4a78f904609c4 +0 -0
- data/spec/dummy/tmp/cache/assets/CEF/560/sprockets%2Fa1bf08ab120c72351b460a65e4800af6 +0 -0
- data/spec/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
- data/spec/dummy/tmp/cache/assets/D08/D50/sprockets%2F36daa544802ddf93249b8d07dab81125 +0 -0
- data/spec/dummy/tmp/cache/assets/D0A/410/sprockets%2F7e74a40717d2324f9a30ddff29ea5124 +0 -0
- data/spec/dummy/tmp/cache/assets/D0E/C00/sprockets%2F3091a34f307d562f44ee24f4c776baa9 +0 -0
- data/spec/dummy/tmp/cache/assets/D0F/180/sprockets%2F1ea0059d1fca1d25898ff37c7c150944 +0 -0
- data/spec/dummy/tmp/cache/assets/D10/610/sprockets%2F5883b6e94dcea7e32d57de13201563c3 +0 -0
- data/spec/dummy/tmp/cache/assets/D11/D20/sprockets%2Fcac21eac42152981882bf9e489316af4 +0 -0
- data/spec/dummy/tmp/cache/assets/D1F/730/sprockets%2F2f81ed50f6f293b326c576a8528ce9f3 +0 -0
- data/spec/dummy/tmp/cache/assets/D22/380/sprockets%2Fda1670e413fe4633d84eb9394fd7797c +0 -0
- data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/D33/240/sprockets%2Ffd4446a4ab97006a073ba30d57fdd617 +0 -0
- data/spec/dummy/tmp/cache/assets/D34/140/sprockets%2F0d8b2740eca50a83fc91e51292f9f00c +0 -0
- data/spec/dummy/tmp/cache/assets/D34/680/sprockets%2Fb2cb3891a4cb197ecb1a37299d14c531 +0 -0
- data/spec/dummy/tmp/cache/assets/D3C/3A0/sprockets%2F40c65286b76c2cbc9d2bd92a60e7f126 +0 -0
- data/spec/dummy/tmp/cache/assets/D3D/C40/sprockets%2F4654852579bc0bea406bcd54d38a7dc3 +0 -0
- data/spec/dummy/tmp/cache/assets/D46/650/sprockets%2Ff56253b5f374fff1a33fbbc9881c9124 +0 -0
- data/spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
- data/spec/dummy/tmp/cache/assets/D58/1E0/sprockets%2Fdd863e40bd669f77bb549b257d88d6b5 +0 -0
- data/spec/dummy/tmp/cache/assets/D61/6F0/sprockets%2F02da53eeca228bcef0c49278517111fe +0 -0
- data/spec/dummy/tmp/cache/assets/D63/720/sprockets%2Fe625e6b0d13c0bd8ca548a48e1d4508b +0 -0
- data/spec/dummy/tmp/cache/assets/D70/D70/sprockets%2Fc9ac544160bbcc29d775b54ca8f0269f +0 -0
- data/spec/dummy/tmp/cache/assets/D73/220/sprockets%2F3dbc0a37f98fb43ec819b85a64d32c55 +0 -0
- data/spec/dummy/tmp/cache/assets/D7A/BD0/sprockets%2Ff645c87585af5bf4be27a271f20b39ff +0 -0
- data/spec/dummy/tmp/cache/assets/D80/960/sprockets%2F269feebf3271f38b09bd01e9b748f77d +0 -0
- data/spec/dummy/tmp/cache/assets/D82/800/sprockets%2F72f633d76779cbfb7d9a57b5623c3faf +0 -0
- data/spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
- data/spec/dummy/tmp/cache/assets/D8D/EA0/sprockets%2Fe64949cb167a0aa27a33a1adf1d544be +0 -0
- data/spec/dummy/tmp/cache/assets/DCA/9B0/sprockets%2Fdf0e8f8a85e5d4056b3fe1cec3b7131a +0 -0
- data/spec/dummy/tmp/cache/assets/DF3/BA0/sprockets%2Ffddeae525be5a563ca0d194b614bf64b +0 -0
- data/spec/dummy/tmp/cache/assets/DFF/B40/sprockets%2Fe0d60af9df95b2a58c278acd3f2beb55 +0 -0
- data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/E0A/870/sprockets%2Fbba31cc2875be0fddf5901fef9b99e48 +0 -0
- data/spec/dummy/tmp/cache/assets/E27/590/sprockets%2F097d2347f3f9d2ec19abefaaa5dd0ec1 +0 -0
- data/spec/dummy/tmp/cache/assets/E30/DC0/sprockets%2F9ddd7093ee1d47cbacd526f4bdd36e3c +0 -0
- data/spec/dummy/tmp/cache/assets/E49/530/sprockets%2F10dadda372ee79deb251d7bbbb025cec +0 -0
- data/spec/dummy/tmp/cache/assets/E82/4C0/sprockets%2F0d49c3fa07b559dbecbaabf2a4bad9c8 +0 -0
- data/spec/dummy/tmp/pids/server.pid +1 -0
- data/spec/factories.rb +28 -0
- data/spec/helpers/blogit/application_helper_spec.rb +14 -0
- data/spec/helpers/blogit/posts_helper_spec.rb +34 -0
- data/spec/lib/blogs_spec.rb +23 -0
- data/spec/lib/configuration_spec.rb +57 -0
- data/spec/lib/parsers/html_parser_spec.rb +12 -0
- data/spec/lib/parsers/markdown_parser_spec.rb +12 -0
- data/spec/lib/parsers/textile_parser_spec.rb +12 -0
- data/spec/models/blogit/comment_spec.rb +64 -0
- data/spec/models/blogit/post_spec.rb +153 -0
- data/spec/spec_helper.rb +16 -0
- data/spec/support/authentication.rb +9 -0
- data/spec/support/configuration.rb +5 -0
- metadata +415 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
|
7
|
+
div.dialog {
|
|
8
|
+
width: 25em;
|
|
9
|
+
padding: 0 4em;
|
|
10
|
+
margin: 4em auto 0 auto;
|
|
11
|
+
border: 1px solid #ccc;
|
|
12
|
+
border-right-color: #999;
|
|
13
|
+
border-bottom-color: #999;
|
|
14
|
+
}
|
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<!-- This file lives in public/404.html -->
|
|
21
|
+
<div class="dialog">
|
|
22
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
|
23
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
|
24
|
+
</div>
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
|
7
|
+
div.dialog {
|
|
8
|
+
width: 25em;
|
|
9
|
+
padding: 0 4em;
|
|
10
|
+
margin: 4em auto 0 auto;
|
|
11
|
+
border: 1px solid #ccc;
|
|
12
|
+
border-right-color: #999;
|
|
13
|
+
border-bottom-color: #999;
|
|
14
|
+
}
|
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<!-- This file lives in public/422.html -->
|
|
21
|
+
<div class="dialog">
|
|
22
|
+
<h1>The change you wanted was rejected.</h1>
|
|
23
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
|
24
|
+
</div>
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
|
7
|
+
div.dialog {
|
|
8
|
+
width: 25em;
|
|
9
|
+
padding: 0 4em;
|
|
10
|
+
margin: 4em auto 0 auto;
|
|
11
|
+
border: 1px solid #ccc;
|
|
12
|
+
border-right-color: #999;
|
|
13
|
+
border-bottom-color: #999;
|
|
14
|
+
}
|
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<!-- This file lives in public/500.html -->
|
|
21
|
+
<div class="dialog">
|
|
22
|
+
<h1>We're sorry, but something went wrong.</h1>
|
|
23
|
+
<p>We've been notified about this issue and we'll take a look at it shortly.</p>
|
|
24
|
+
</div>
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
|
File without changes
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
|
3
|
+
|
|
4
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
|
5
|
+
require File.expand_path('../../config/boot', __FILE__)
|
|
6
|
+
require 'rails/commands'
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
require 'test_helper'
|
|
2
|
+
|
|
3
|
+
class PeopleControllerTest < ActionController::TestCase
|
|
4
|
+
setup do
|
|
5
|
+
@person = people(:one)
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
test "should get index" do
|
|
9
|
+
get :index
|
|
10
|
+
assert_response :success
|
|
11
|
+
assert_not_nil assigns(:people)
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
test "should get new" do
|
|
15
|
+
get :new
|
|
16
|
+
assert_response :success
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
test "should create person" do
|
|
20
|
+
assert_difference('Person.count') do
|
|
21
|
+
post :create, person: @person.attributes
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
assert_redirected_to person_path(assigns(:person))
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
test "should show person" do
|
|
28
|
+
get :show, id: @person.to_param
|
|
29
|
+
assert_response :success
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
test "should get edit" do
|
|
33
|
+
get :edit, id: @person.to_param
|
|
34
|
+
assert_response :success
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
test "should update person" do
|
|
38
|
+
put :update, id: @person.to_param, person: @person.attributes
|
|
39
|
+
assert_redirected_to person_path(assigns(:person))
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
test "should destroy person" do
|
|
43
|
+
assert_difference('Person.count', -1) do
|
|
44
|
+
delete :destroy, id: @person.to_param
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
assert_redirected_to people_path
|
|
48
|
+
end
|
|
49
|
+
end
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
require 'test_helper'
|
|
2
|
+
|
|
3
|
+
class UsersControllerTest < ActionController::TestCase
|
|
4
|
+
setup do
|
|
5
|
+
@user = users(:one)
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
test "should get index" do
|
|
9
|
+
get :index
|
|
10
|
+
assert_response :success
|
|
11
|
+
assert_not_nil assigns(:users)
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
test "should get new" do
|
|
15
|
+
get :new
|
|
16
|
+
assert_response :success
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
test "should create user" do
|
|
20
|
+
assert_difference('User.count') do
|
|
21
|
+
post :create, user: @user.attributes
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
assert_redirected_to user_path(assigns(:user))
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
test "should show user" do
|
|
28
|
+
get :show, id: @user.to_param
|
|
29
|
+
assert_response :success
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
test "should get edit" do
|
|
33
|
+
get :edit, id: @user.to_param
|
|
34
|
+
assert_response :success
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
test "should update user" do
|
|
38
|
+
put :update, id: @user.to_param, user: @user.attributes
|
|
39
|
+
assert_redirected_to user_path(assigns(:user))
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
test "should destroy user" do
|
|
43
|
+
assert_difference('User.count', -1) do
|
|
44
|
+
delete :destroy, id: @user.to_param
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
assert_redirected_to users_path
|
|
48
|
+
end
|
|
49
|
+
end
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1238
|
data/spec/factories.rb
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
FactoryGirl.define do
|
|
2
|
+
|
|
3
|
+
# =================
|
|
4
|
+
# = Gem Factories =
|
|
5
|
+
# =================
|
|
6
|
+
factory :post, class: Blogit::Post do
|
|
7
|
+
title "Tis is a blog post title"
|
|
8
|
+
body "This is the body of the blog post - you'll see it's a lot bigger than the title"
|
|
9
|
+
association :blogger, :factory => :user
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
factory :comment, class: Blogit::Comment do
|
|
13
|
+
name "Gavin"
|
|
14
|
+
email "gavin@gavinmorrice.com"
|
|
15
|
+
website "http://gavinmorrice.com"
|
|
16
|
+
body "I once saw a child the size of a tangerine!"
|
|
17
|
+
post
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
# =======================
|
|
21
|
+
# = Dummy App Factories =
|
|
22
|
+
# =======================
|
|
23
|
+
factory :user do
|
|
24
|
+
username "bodacious"
|
|
25
|
+
password "password"
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
require "spec_helper"
|
|
2
|
+
|
|
3
|
+
describe Blogit::PostsHelper do
|
|
4
|
+
|
|
5
|
+
describe "format_content" do
|
|
6
|
+
|
|
7
|
+
it "should convert markdown text to html if conf is :markdown" do
|
|
8
|
+
Blogit.configure { |c| c.default_parser = :markdown }
|
|
9
|
+
helper.format_content("## Hello\n\nWorld").should match(/<h2>Hello<\/h2>\n\n<p>World<\/p>/)
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
it "should convert textile text to html if conf is :textile" do
|
|
13
|
+
Blogit.configure { |c| c.default_parser = :textile }
|
|
14
|
+
helper.format_content("h1. Hello\n\nWorld").should == "<h1>Hello</h1>\n<p>World</p>"
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
it "should convert html text to html if conf is :html" do
|
|
18
|
+
Blogit.configure { |c| c.default_parser = :html }
|
|
19
|
+
helper.format_content("<h1>Hello</h1>\n\n<p>World</p>").should == "<h1>Hello</h1>\n\n<p>World</p>"
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
describe :blog_post_tag do
|
|
26
|
+
|
|
27
|
+
it "should create a tag element and give it a 'blog_post... prefixed class" do
|
|
28
|
+
helper.blog_post_tag(:div, "hello", id: "blog_div", class: "other_class").should == %{<div class="other_class blog_post_div" id="blog_div">hello</div>}
|
|
29
|
+
helper.blog_post_tag(:li, "hello", id: "blog_li").should == %{<li class="blog_post_li" id="blog_li">hello</li>}
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
end
|