def test_print_post(self):
		post = Post('Post title', 'Post content')
		expected_print = '''{} {}'''.format(post.title, post.content)
		with patch('builtins.print') as mocked_print:
			app.print_post(post)

			mocked_print.assert_called_with(expected_print)
Beispiel #2
0
 def test_print_post(self):
     post = Post('Test Title', 'Test Content')
     with patch('builtins.print') as mocked_print_post:
         app.print_post(post)
         mocked_print_post.assert_called_with(
             app.POST_TEMPLATE.format(post.title, post.content)
         )
Beispiel #3
0
    def test_print_post(self):
        post = Post('Post Title', 'Post content')
        expected_print = app.POST_TEMPLATE.format('Post Title', 'Post content')
        with patch('builtins.print') as mocked_print:
            app.print_post(post)

            mocked_print.assert_called_with(expected_print)
Beispiel #4
0
    def test_print_post(self):
        post = Post('Test Post 1', 'Test Content 1')
        expected_print = '--- Test Post 1 ---\nTest Content 1\n'

        with patch('builtins.print') as mocked_print:
            app.print_post(post)
            mocked_print.assert_called_with(expected_print)
    def test_print_post(self):
        post = Post('Post Title', 'Post Content')
        expected_print = '--- Post Title --- Post Content'

        with patch('builtins.print') as mocked_print:
            app.print_post(post)
            mocked_print.assert_called_with(expected_print)
Beispiel #6
0
    def test_print_post_content(self):
        post = Post("Post Title", "Post Content")
        expected_print = '''---Post Title ---
 ---Post Content---
  '''
        with patch('builtins.print') as mocked_blog_content:
            app.print_post(post)
        mocked_blog_content.assert_called_with(expected_print)
Beispiel #7
0
    def test_print_post(self):
        post = Post("Post title", "Post content")
        expected_print = 'Post title Post content'

        with patch("builtins.print") as mocked_print:
            app.print_post(post)

            mocked_print.assert_called_with(expected_print)
Beispiel #8
0
    def test_print_post(self):
        test_blog = app.blogs["Test"]
        post = test_blog.create_post("Test Post", "Test Content")
        test_blog.posts.append(post)

        with patch("app.print_post") as mocked_print_post:
            app.print_post(post)

            mocked_print_post.assert_called_with(post)
Beispiel #9
0
 def test_print_post(self):
     post = Post('Test', 'Test Content')
     expected_print = '''
 --- Test ---
 Test Content
 '''
     with patch('builtins.print') as mock_print:
         app.print_post(post)
         mock_print.assert_called_with(expected_print)
Beispiel #10
0
 def test_print_post(self):
     post = Post("Title_post", "Content_post")
     expected_print = """
 =========== Title_post ===========
 
 Content_post
 
 """
     with patch('builtins.print') as mocked_print:
         app.print_post(post)
         mocked_print.assert_called_with(expected_print)
    def test_print_post(self):
        post = Post('Test Title', 'Test Content')

        with patch('builtins.print') as mocked_print:
            app.print_post(post)
            expected_print = """
---Test Title---

Test Content
"""
            mocked_print.assert_called_with(expected_print)
Beispiel #12
0
    def test_print_post(self):

        #blog = Blog("Love", "Kingsman")
        #blog.create_post("Forever Love", "Siblings")
        #application.blogs = dict({"Love": blog})
        post = Post("Forever Love", "Siblings")
        expected = '''---Forever Love---Siblings'''

        with patch("builtins.print") as mocked_print:
            app.print_post(post)
            #mocked_print.assert_called_with(expected)
            self.assertEqual(app.POST_TEMPLATE, '''---{}---{}''')
Beispiel #13
0
    def test_print_post(self):
        post_to_print = Post('Post to Print', 'Post Content to Print')
        # creating a single post to send to print

        expected_post_print = '''
        --- Post to Print ---
            Post Content to Print
        '''

        with patch('builtins.print') as mocked_print:
            app.print_post(post_to_print)

            mocked_print.assert_called_with(expected_post_print)
 def test_print_post(self):
     post: object = Post('Post Title', 'Post Content')
     expected_print = """ 
 
 ======Post Title============
 
 Post Content
 
 
 
 """
     with patch('builtins.print') as mocked_print:
         app.print_post(post)
         mocked_print.assert_called_with(expected_print)
Beispiel #15
0
    def test_print_post(self):
        """
        This is a test for print_post function
        """
        post = Post('Post1', 'This is my first post')
        expected_print = """
--- Post1 ---

This is my first post

"""

        with patch('builtins.print') as mocked_print:
            app.print_post(post)
            mocked_print.assert_called_with(expected_print)
Beispiel #16
0
def test_print_post():
    post = Post('Test Post', 'Test Content')
    with patch('builtins.print') as mocked_print:
        app.print_post(post)
        expected = "---Test Post---\nTest Content"
        mocked_print.assert_called_with(expected)
Beispiel #17
0
 def test_print_post(self):
     post = Post('Post title', 'Post content')
     expected_print = "Post title Post content"
     with patch('builtins.print') as mocked_print:
         app.print_post(post)
         mocked_print.assert_called_with(expected_print)
 def test_print_post(self):
     post = Post('Test', 'Test Content')
     expected = app.POST_TEMPLATE.format('Test', 'Test Content')
     with patch('builtins.print') as mock_print:
         app.print_post(post)
         mock_print.assert_called_with(expected)
Beispiel #19
0
 def test_print_post(self):
     post = Post("Post Title", "Post Content")
     expected_print = f"Title: Post Title, Content: Post Content"
     with patch("builtins.print") as mocked_print:
         app.print_post(post)
         mocked_print.assert_called_with(expected_print)
 def test_print_post(self):
     post = Post("Titulek", "Obsah")
     expected = "Titulek: Obsah"
     with patch("builtins.print") as mocked_print:
         app.print_post(post)
         mocked_print.assert_called_with(expected)