-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #230 from sumandari/229_fix_comment_textholder
fixed comment placeholder text
- Loading branch information
Showing
3 changed files
with
28 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from django.test import TestCase | ||
|
||
from base.forms.processing_forms import ResourceBaseReviewForm | ||
|
||
|
||
class TestFormResourceBaseReviewForm(TestCase): | ||
def test_review_form_comment_includes_resource_name(self): | ||
form = ResourceBaseReviewForm(resource_name='test resource') | ||
self.assertIn( | ||
'placeholder="Please provide clear feedback if you decided to not ' | ||
'approve this test resource." required id="id_comment"', | ||
form.as_table() | ||
) |