Skip to content

Commit

Permalink
add base cerberusweb publisher file and test
Browse files Browse the repository at this point in the history
  • Loading branch information
cpjolicoeur committed Jun 22, 2010
1 parent a26e5d0 commit 48b7808
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/cerberus/publisher/cerberusweb.rb
@@ -0,0 +1,8 @@
require 'rubygems'
require 'cerberus/publisher/base'

class Cerberus::Publisher::CerberusWeb < Cerberus::Publisher::Base
def self.publish(state, manager, options)
# TODO: replace with actual publisher content
end
end
12 changes: 12 additions & 0 deletions test/cerberusweb_publisher_test.rb
@@ -0,0 +1,12 @@
require File.dirname(__FILE__) + '/test_helper'

require 'cerberus/publisher/cerberusweb'
require 'cerberus/manager'
require 'mock/manager'

class CerberuswebPublisherText < Test::Unit::TestCase
def test_publisher
# TODO: replace with real tests
assert true
end
end

0 comments on commit 48b7808

Please sign in to comment.