-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename importer model into files folder
- Loading branch information
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
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,21 @@ | ||
# frozen_string_literal: true | ||
|
||
# Copyright (c) 2008-2013 Michael Dvorkin and contributors. | ||
# | ||
# Fat Free CRM is freely distributable under the terms of MIT license. | ||
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php | ||
#------------------------------------------------------------------------------ | ||
# == Schema Information | ||
# | ||
# Table name: importers | ||
# | ||
# id :integer not null, primary key | ||
# filename :string(64) default(""), not null | ||
# md5sum :string(32) default(""), not null | ||
# | ||
|
||
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper') | ||
|
||
RSpec.describe Importer, type: :model do | ||
pending "add some examples to (or delete) #{__FILE__}" | ||
end |