diff --git a/app/content/pages/articles/what-you-need-to-know-about-sqlite.html.mdrb b/app/content/pages/articles/what-you-need-to-know-about-sqlite.html.mdrb index 4465a336..a494e5d2 100644 --- a/app/content/pages/articles/what-you-need-to-know-about-sqlite.html.mdrb +++ b/app/content/pages/articles/what-you-need-to-know-about-sqlite.html.mdrb @@ -17,8 +17,6 @@ It’s basically this: computers have gotten faster, and Rails has finally figur With the recent release of Rails 8, it’s easier than ever to choose SQLite as your primary database for production. The question is, _should you?_ -<%= render Share::Polls::LazyPagePoll.new(Current.page, "SQLite on Rails Poll", "How likely are you to use SQLite in your Rails app?" => ["100%", "Strongly considering", "On the fence", "Not very, but open minded", "No way"]) %> - ## SQLite3::Database.open [Joy of Rails](/) has run on SQLite since launch, and I have been very happy with my choice—I plan to keep it that way. But SQLite isn’t for everyone. diff --git a/spec/system/content/what-you-need-to-know-about-sqlite_spec.rb b/spec/system/content/what-you-need-to-know-about-sqlite_spec.rb index 6a5d6674..6bb17618 100644 --- a/spec/system/content/what-you-need-to-know-about-sqlite_spec.rb +++ b/spec/system/content/what-you-need-to-know-about-sqlite_spec.rb @@ -7,7 +7,7 @@ expect(page).to have_content "What you need to know about SQLite" end - it "displays the article content with poll by primary author" do + xit "displays the article content with poll by primary author" do FactoryBot.create(:user, :primary_author) visit "/articles/what-you-need-to-know-about-sqlite"