Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor documentation nitpicks #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TODO
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ TODO tasks for Smolder

+ Add screenshots to POD

+ Seems that when a report is deleted the directory structure of it's data is still there. We need to do a better job of cleaning up.
+ Seems that when a report is deleted the directory structure of its data is still there. We need to do a better job of cleaning up.

+ Add support for dev releases to CPAN

Expand Down
4 changes: 2 additions & 2 deletions lib/Smolder.pm
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ Please see L<Smolder::Manual> for how to use it.

=item * Self contained web application

Smolder has it's own built-in HTTP server (Net::Server) and database (SQLite).
Smolder has its own built-in HTTP server (Net::Server) and database (SQLite).

=item * Standard Format

Smolder uses L<TAP|http://en.wikipedia.org/wiki/Test_Anything_Protocol> and TAP Archives
as it's reporting format. See L<Smolder::Manual> for more details.
as its reporting format. See L<Smolder::Manual> for more details.

=item * Multiple Notification Channels

Expand Down
2 changes: 1 addition & 1 deletion lib/Smolder/DB/SmokeReport.pm
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ sub upload_report {
# send an email to all the user's who want this report
$report->_send_emails($results);

# move the tmp file to it's real destination
# move the tmp file to its real destination
my $dest = $report->file;
my $out_fh;
if ($file =~ /\.gz$/ or $file =~ /\.zip$/) {
Expand Down
2 changes: 1 addition & 1 deletion lib/Smolder/Manual.pm
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ seconds (seconds since 01/01/1970).

=item * stop_time

The time the test suite finished it's run. This time is given in epoch
The time the test suite finished its run. This time is given in epoch
seconds (seconds since 01/01/1970).

=back
Expand Down
2 changes: 1 addition & 1 deletion t/db-smoke_test.t
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ is(ref $html, 'SCALAR');
contains_string($$html, '<table', 'just looking for an HTML tag');
ok(-e $html_file, 'HTML file saved to disk');

# make sure that each test file has it's own HTML file too
# make sure that each test file has its own HTML file too
for (0 .. ($report->test_files - 1)) {
ok(-e catfile($report->data_dir, 'html', "$_.html"), "Test $_ has HTML file");
}
Expand Down