Guest User

Untitled

a guest
Nov 18th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. require "minitest/autorun"
  2.  
  3. require File.expand_path("blog", "models")
  4.  
  5. class BlogTest < MiniTest::Unit::TestCase
  6. def test_posts_directory_exists
  7. blog = Blog.new
  8. assert Dir.exists?(blog.posts_directory)
  9. end
  10. end
Add Comment
Please, Sign In to add comment