mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
681b024298
- renamed Test.pm to Testcase.pm - renamed Result.pm to ResultStatus.pm - remove extraneous references to platform -> same info is acquired through opsys now - add DEBUG flag to Config.pm - change tests references to testcases - fix changed field abbreviations - add helper DBTools methods for: -* renaming tables -* adding a fulltext index -* dropping indices - add new retrieve_all overrides for Locale.pm and User.pm - add sql methods to retrieve entity information from join tables: -* Platform -* Subgroup -* Testgroup -* Testcase -* Testresult - replace Class::DBI-heavy (read: slow) coverage functions with targetted sql that only return the required fields - remove out-of-date age and isrecent functions, along with references to expirationdays b=320546 - use truncated email as display name when all else fails b=334871 - add fulltext search functions for searching testcases by summary, steps, and expected results
47 lines
1.3 KiB
Perl
Executable File
47 lines
1.3 KiB
Perl
Executable File
# -*- mode: cperl; c-basic-offset: 8; indent-tabs-mode: nil; -*-
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
# Version: MPL 1.1
|
|
#
|
|
# The contents of this file are subject to the Mozilla Public License
|
|
# Version 1.1 (the "License"); you may not use this file except in
|
|
# compliance with the License. You may obtain a copy of the License
|
|
# at http://www.mozilla.org/MPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS IS"
|
|
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
|
|
# the License for the specific language governing rights and
|
|
# limitations under the License.
|
|
#
|
|
# The Original Code is Litmus.
|
|
#
|
|
# The Initial Developer of the Original Code is
|
|
# the Mozilla Corporation.
|
|
# Portions created by the Initial Developer are Copyright (C) 2006
|
|
# the Initial Developer. All Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
# Chris Cooper <ccooper@deadsquid.com>
|
|
# Zach Lipton <zach@zachlipton.com>
|
|
#
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
=cut
|
|
|
|
package Litmus::DB::Format;
|
|
|
|
use strict;
|
|
use base 'Litmus::DBI';
|
|
|
|
Litmus::DB::Format->table('test_format_lookup');
|
|
|
|
Litmus::DB::Format->columns(All => qw/format_id name/);
|
|
|
|
Litmus::DB::Format->column_alias("format_id", "formatid");
|
|
|
|
Litmus::DB::Format->has_many(testcases => "Litmus::DB::Testcase");
|
|
|
|
1;
|